This forum is closed to new posts and
responses. The content has been migrated to the Digital Solutions Community. Please join us there for new content as well as this content. For customer support, please visit the official HCL customer support channels below:
RE: Exporting to MS Access ~Chloe Dwogerokonyoden 28.Jan.04 09:21 AM a Web browser Applications Development All ReleasesAll Platforms
Have you put the use?
UseLSX "*LSXODBC"
In the help of Lotus there is this example:
his agent declares a new ODBCConnection object and connects to a user-specified data source.
Uselsx "*LSXODBC"
Sub Initialize
Dim con As New ODBCConnection
con.ConnectTo(Inputbox("ODBC data source name", "DSN"))
While Not con.IsConnected
dsn = Inputbox("ODBC data source name", _
"Connection not made ...")
If dsn = "" Then Exit Sub
con.ConnectTo(dsn)
Wend
Messagebox "Connected to " & con.DataSourceName,, _
"Connection made ..."
con.Disconnect
End Sub